@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');

body {
  font-family: 'Lora', serif;
  color: #2A3D45;
}

.grid-container {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3px;
    width: 100%;
    height: 100%;
    margin: 0 10% 10px;

}


.textbox{
    outline: solid #2A3D45 3px;
    grid-column: 1/4;
    height: 100%;
    width: 100%;
}

#textEditor{
    background: repeating-linear-gradient(
    to bottom, transparent, transparent 26px, #33d 27px
    );
    font-family: 'Lora', serif;
    font-size: 15px; line-height: 27px;
    padding: 0px 5px; margin: 8px;
    height: 100%;
    width: 100%;
    
}

h2{
    text-align: center;
    margin-top: -30px;
}

h3{
    text-align: center;
    margin-top: -20px;
    font-family: 'Lora', serif;
    font-size: 15px; line-height: 27px;
    padding: 1rem 5px; 
    height: 100%;
    width: 100%;
}

/* New Stuff */
html {
    margin: 0;
}

#formattedText {
    display: none;
}

#textEditor {
    grid-row: 1; 
    grid-column: 1/2;
    width: auto;
    height: auto;
    border: 0;
    border: none;
    outline: none;
    padding: 30px;
}

body {margin:0;}

.icon-bar button {
    outline: solid #2A3D45 1px;
    grid-column: 3;
    height: 75px;
    width: 10vw;
    justify-items: center;
    align-items: center;
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: #8DCECC;
    border: none;
    min-width: 100px;
}

.icon-bar button:hover {
    background-color: #2A3D45;
}

.icon-bar {
    outline: solid #2A3D45 3px;
    grid-column: 4;
    width: 10vw;
    height: 1000px;
    background-color: #2A3D45;
    border: none;
    min-width: 100px;
}

.format {
    width: 10vw;
    color: #8DCECC;
    padding: 16px;
    border: none;
    text-align: center;
}
  
.drop {
    position: relative;
    display: inline-block;
}
  
.dropdown-content {
    width: 10vw;
    height: 40px;
    display: none;
    position: absolute;
}

.dropdown-content button {
    width: 10vw;
    height: 40px;
    text-size-adjust: 10px;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
  
.dropdown-content button:hover {background-color: #ddd;}
  
.drop:hover .dropdown-content {display: block;}
  
.drop:hover .format {background-color: #2A3D45;}

.back_button {
    grid-column: 1;
    grid-row: 1;
    height: 42px;
    width: 42px;
}

footer {
    color: white;
    margin: 0 0;
    height: 50px;
    background-color: #2A3D45;
}